home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / feature_name.e < prev    next >
Text File  |  2000-03-25  |  3KB  |  112 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. deferred class FEATURE_NAME
  17.    --
  18.    -- Root of SIMPLE_FEATURE_NAME, INFIX_NAME, PREFIX_NAME and 
  19.    --                      FROZEN_FEATURE_NAME.
  20.    --
  21.  
  22. inherit NAME;
  23.  
  24. feature
  25.  
  26.    is_manifest_string: BOOLEAN is false;
  27.  
  28.    is_manifest_array: BOOLEAN is false;
  29.  
  30.    is_result: BOOLEAN is false;
  31.  
  32.    is_void: BOOLEAN is false;
  33.  
  34.    c_simple: BOOLEAN is true;
  35.  
  36. feature
  37.  
  38.    to_key: STRING is
  39.          -- To avoid clash between different kinds of names (for
  40.          -- example when using same infix/prefix operator).
  41.          -- Also used to compute the C name or the JVM name.
  42.       deferred
  43.       ensure
  44.          not Result.is_empty;
  45.          Result = string_aliaser.item(Result)
  46.       end;
  47.  
  48.    is_frozen: BOOLEAN is
  49.       deferred
  50.       end;
  51.  
  52.    mapping_c_in(str: STRING) is
  53.       deferred
  54.       end;
  55.  
  56.    frozen origin_base_class: BASE_CLASS is
  57.          -- Void or the BASE_CLASS where Current is written in.
  58.       do
  59.          Result := start_position.base_class;
  60.       end;
  61.    
  62. feature
  63.  
  64.    is_freeop: BOOLEAN is
  65.       do
  66.          inspect
  67.             to_string @ 1
  68.          when '@', '#', '|', '&' then
  69.             Result := true;
  70.          else
  71.          end;
  72.       end;
  73.  
  74.    declaration_in(str: STRING) is
  75.       require
  76.          str /= Void
  77.       deferred
  78.       end
  79.  
  80.    declaration_pretty_print is
  81.       deferred
  82.       end;
  83.  
  84.    short is
  85.       deferred
  86.       end;
  87.  
  88.    frozen afd_check is
  89.       do
  90.       end;
  91.  
  92. feature {E_FEATURE}
  93.  
  94.    undefine_in(bc: BASE_CLASS) is
  95.       require
  96.          bc /= Void
  97.       do
  98.          if is_frozen then
  99.             error(start_position,
  100.                   "A frozen feature must not be undefined (VDUS).");
  101.             bc.fatal_undefine(Current);
  102.          end;
  103.       end;
  104.  
  105. feature {RUN_FEATURE,FEATURE_NAME}
  106.  
  107.    put_cpp_tag is
  108.       deferred
  109.       end;
  110.  
  111. end -- FEATURE_NAME
  112.